Component org.nuxeo.ecm.platform.csv.export.config
In bundle org.nuxeo.ecm.platform.csv.export
Requirements
Resolution Order
320
The resolution order represents the order in which this component has been resolved by the Nuxeo Runtime
framework.
You can influence this order by adding "require" tags in your component declaration, to make sure it is resolved after another component.
Contributions
- org.nuxeo.ecm.platform.csv.export.config--actions
- org.nuxeo.ecm.platform.csv.export.config--streamProcessor
XML Source
<?xml version="1.0"?>
<component name="org.nuxeo.ecm.platform.csv.export.config" version="1.0.0">
<require>org.nuxeo.ecm.core.bulk</require>
<extension target="org.nuxeo.ecm.core.bulk" point="actions">
<action name="csvExport" inputStream="bulk/csvExport" bucketSize="100" batchSize="50" httpEnabled="true"
defaultScroller="${nuxeo.core.bulk.csvExport.scroller:=default}"
defaultQueryLimit="${nuxeo.core.bulk.csvExport.queryLimit:=100000}"
validationClass="org.nuxeo.ecm.platform.csv.export.validation.CSVExportValidation" />
</extension>
<extension target="org.nuxeo.runtime.stream.service" point="streamProcessor">
<!-- CSV exporter processor -->
<streamProcessor name="csvExport" class="org.nuxeo.ecm.platform.csv.export.action.CSVExportAction"
defaultConcurrency="2" defaultPartitions="2">
<policy name="default" maxRetries="3" delay="1s" maxDelay="10s" continueOnFailure="true" />
<option name="produceImmediate">false</option>
</streamProcessor>
</extension>
</component>